home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2008 September
/
PCWorld_2008-09_cd.bin
/
Audio-video
/
spiderplayer
/
Spider_Player_2.3.5_Setup.exe
/
{app}
/
reset.bat
< prev
next >
Wrap
DOS Batch File
|
2008-05-01
|
431b
|
26 lines
@echo off
echo Please, make sure Spider Player is not running.
pause
IF EXIST Spider.xml (
DEL Spider.xml
) ELSE (
%homedrive%
CD %appdata%
CD "Spider Player"
DEL Spider.xml
)
IF EXIST Spider.xml (
echo Could not delete the file "Spider.xml".
echo The file is probably being used by another application.
) ELSE (
echo Spider Player options have been successfully resetted to their defaults.
)
pause